From e516decc8c8979c6f95856f5d8b349f186e53573 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 26 Feb 2008 14:35:39 +0000 Subject: [PATCH] Fix restore of saved image containing rtc_timeoffset Saved images contain rtc_timeoffset as a string value, resulting in a TypeError exception when calling xc.domain_set_time_offset() on restore. Cast rtc_timeoffset to int before calling xc.domain_set_time_offset(). Signed-off-by: Jim Fehlig --- tools/python/xen/xend/image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xend/image.py b/tools/python/xen/xend/image.py index 414bf53d14..210aae1d80 100644 --- a/tools/python/xen/xend/image.py +++ b/tools/python/xen/xend/image.py @@ -390,7 +390,7 @@ class LinuxImageHandler(ImageHandler): ImageHandler.configure(self, vmConfig) rtc_timeoffset = vmConfig['platform'].get('rtc_timeoffset') if rtc_timeoffset is not None: - xc.domain_set_time_offset(self.vm.getDomid(), rtc_timeoffset) + xc.domain_set_time_offset(self.vm.getDomid(), int(rtc_timeoffset)) def buildDomain(self): store_evtchn = self.vm.getStorePort() -- 2.30.2